FrameResourceTree

data class FrameResourceTree(frame: Frame, childFrames: List<FrameResourceTree>?, resources: List<FrameResource>)

Information about the Frame hierarchy along with their cached resources.

Constructors

FrameResourceTree
Link copied to clipboard
fun FrameResourceTree(frame: Frame, childFrames: List<FrameResourceTree>? = null, resources: List<FrameResource>)

Properties

childFrames
Link copied to clipboard
val childFrames: List<FrameResourceTree>? = null
Child frames.
frame
Link copied to clipboard
val frame: Frame
Frame information for this tree item.
resources
Link copied to clipboard
val resources: List<FrameResource>
Information about frame resources.

Sources

jvm source
Link copied to clipboard